home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Purity / Purity #42 (1995-01)(PackMAN)(DE)[WB].zip / Purity #42 (1995-01)(PackMAN)(DE)[WB].adf / Includes3v1 / Includes3v1.lha / Graphics / coerce.i < prev    next >
Text File  |  1994-12-04  |  634b  |  28 lines

  1.  {      mode coercion definitions }
  2.  
  3. const
  4. {  These flags are passed (in combination) to CoerceMode() to determine the
  5.  * type of coercion required.
  6.  }
  7.  
  8. {  Ensure that the mode coerced to can display just as many colours as the
  9.  * ViewPort being coerced.
  10.  }
  11.     PRESERVE_COLORS = 1;
  12.  
  13. {  Ensure that the mode coerced to is not interlaced. }
  14.     AVOID_FLICKER   = 2;
  15.  
  16. {  Coercion should ignore monitor compatibility issues. }
  17.     IGNORE_MCOMPAT  = 4;
  18.  
  19.  
  20.     BIDTAG_COERCE   = 1; {  Private }
  21.  
  22. { --- functions in V39 or higher (Release 3) ---}
  23.  
  24. FUNCTION CoerceMode(VP : ViewPortPtr; MonitorID, Flags : Integer) : Integer;
  25.     External;
  26.  
  27.  
  28.